home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 9,300 to 9,399 / 9300.zip / AOLDLs / HTML & Web Tools (MAC) / HTML_ MTX Web Publishing Tool / MTX Tool 1.3.sit / MTX Tool 1.3 / guide / docs / otherpp.mtx < prev    next >
Text File  |  1996-02-23  |  3KB  |  95 lines

  1. %TITLE Other Page Tags
  2. %LAYOUT noindex
  3. %LAYOUT print
  4. %HOMEURL http://www.med.ufl.edu/medinfo/
  5. %PARENT Table of Contents
  6. %PARENTURL index.html
  7. %INDEX View MTX File
  8. %INDEXURL other.mtx
  9. %PREVURL keywords.html
  10. %NEXTURL none
  11. %AUTHOR Richard Rathe / rrathe@ufl.edu
  12. %AUTHURL rrathe@ufl.edu
  13. %VERSION MTX 1.3 User's Manual / Copyright 1996 by the University of Florida
  14. %PATH http://www.med.ufl.edu/medinfo/mtx/docs/
  15. %REFRESH 30 index.html
  16. %MTX 1.3
  17.  
  18. #Layout
  19.  
  20. Use the "%LAYOUT" tag to change the overall formatting for the page(s).
  21. Several switches are available:
  22.  
  23.     %LAYOUT cover - Suppresses the page footer and indexing. Useful for
  24. {#cover pages#cover.html#} where administrative data at the bottom of the
  25. page is unnecessary.
  26.     %LAYOUT print - Suppresses navigation links and the table of contents for
  27. the page. This is useful when you want to "{#pretty print#otherpp.html#}" the
  28. page on paper.
  29.     %LAYOUT slide - Create {#presentation slides#slides.html#} based on the
  30. headings in the document.
  31.     %LAYOUT keyword - Identifies a page that contains
  32. {#keyword index#keywords.html#} terms.
  33.     %LAYOUT noindex - Identifies a page that should be excluded from indexing.
  34.  
  35. #Colors
  36.  
  37. The "%COLORS" tag allows you to change the {#text and background
  38. colors#http://home.netscape.com/assist/net_sites/bg/index.html#} for the page.
  39. Colors are represented by a pound sign (#) and three red/green/blue hexadecimal
  40. digits (black is #000000 and white is #FFFFFF). You can set up to five of the
  41. following:
  42.  
  43.     BGCOLOR - Background color
  44.     TEXT - Text color
  45.     LINK - Link color
  46.     ALINK - Active link highlight color
  47.     VLINK - Visited link color
  48.  
  49. =  %COLORS BGCOLOR=#40FF40 TEXT=#FFFFFF LINK=#0102FF VLINK=#0102FF
  50.  
  51. {#Netscape Only#netscape.html#}
  52.  
  53. #Watermark
  54.  
  55. The "%WATERMARK" tag allows you to add a {#watermark graphic#otherbg.html#} to
  56. the page instead of the solid color background:
  57.  
  58. =  %WATERMARK mtxbg
  59.  
  60. {#Netscape Only#netscape.html#}
  61.  
  62. #Base
  63.  
  64. The "%BASE" tag is similar to the "%PATH" tag and is used to specify the
  65. permanent location for the page. This is useful when the page is copied, saved
  66. to disk, or printed on paper. A reference to the original document will appear
  67. in the page footer. Specify the path {*without*} the file name, MTX will add
  68. it automatically to make a complete URL. It also adds a <BASE> tag to the HTML
  69. header. This is useful if you distribute the page to multiple sites.
  70. {#Relative URLs#terminol.html#URL#} will use the path specified by "%BASE",
  71. not the current location of the page.
  72.  
  73. =  %BASE http://www.med.ufl.edu/medinfo/mtx/docs/
  74.  
  75. #Counter
  76.  
  77. The "%COUNTER" tag is used to add a dynamic counter at the bottom of the page.
  78. You must specify a start date for the counter and the URL of the CGI counter
  79. program.
  80.  
  81. =  %COUNTER January 1, 1996 http://www.med.ufl.edu/cgi/counter.cgi
  82.  
  83. #Refresh#=REFRESH
  84.  
  85. {#Netscape#netscape.html#} and other Web browsers have the ability to refresh
  86. pages automatically at timed intervals. The "%REFRESH" tag allows you to specify
  87. the number of seconds the browser will wait before updating the page. You have
  88. the option to specify a URL to jump to when the interval has elapsed. If no URL
  89. is specified, the browser will refresh the current page.
  90.  
  91. =  %REFRESH 30
  92. =  %REFRESH 60 http://www.med.ufl.edu/medinfo/mtx/docs/slides.html
  93.  
  94. This page will return to the index page after 30 seconds.
  95.